* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
}

html {
	height: 100%;
}

body {
	font-family: "微软雅黑";
	font-size: 14px;
	color: #333;
	line-height: 24px;
	background-color:white;
	overflow-x: hidden;

}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
em,
dt,
form,
p,
i,
span {
	margin: 0;
	padding: 0;
	font-size: 100%;
	font-family: inherit;
	list-style: none;
	font-weight: normal;
	font-style: normal;
	border: 0;
}

select,
input,
textarea {
	border-radius: 0;
	-webkit-border-radius: 0;
	text-transform: none;
	outline: none;
}

input:focus {
	outline: none;
}

input,
button,
select,
textarea {
	outline: none;
	/*-webkit-appearance:none;*/
	/*强制去除表单自带的样式*/
}

textarea {
	resize: none;
	/*-webkit-appearance:none;*/
	/*强制去除textarea自带的样式*/
}

textarea,
input,
select {
	background: none;
	border: none;
	margin: 0;
	padding: 0;
}


a {
	color: #333;
	text-decoration: none;
	transition: all .2s ease-in-out;
}

a:hover {
	color: #024890;
	text-decoration: none;
}

a:active,
a:focus {
	outline: 0;
	color: #024890;
	text-decoration: none;
}

img {
	border: 0;
	vertical-align: middle;
}

video:focus {
	outline: none;
}

.clearfix:after {
	content: ".";
	display: block;
	height: 0;
	clear: both;
	visibility: hidden;
}

.clearfix {
	*zoom: 1;
}

.ellipsis {
	text-overflow: ellipsis;
	white-space: nowrap;
	overflow: hidden;
}
.hang1{
	overflow: hidden; 
	display: -webkit-box; 
	-webkit-line-clamp: 1; 
	-webkit-box-orient:vertical;
	}
	
.hang2{
	overflow: hidden; 
	display: -webkit-box; 
	-webkit-line-clamp: 2; 
	-webkit-box-orient:vertical;
	}
	
.hang3{
	overflow: hidden; 
	display: -webkit-box; 
	-webkit-line-clamp: 3; 
	-webkit-box-orient:vertical;
	}


.fl {
	float: left;
}

.fr {
	float: right;
}



.table_c{
    width: 100%;
    border-collapse: collapse;
}
.table_c th,
.table_c td{
    border: 1px solid #222;
    text-align: left;
	padding:8px 5px;
}
table tbody tr:nth-child(2n){background: #ebebeb;}
table tbody tr:nth-of-type(1){ background: #6a6b6b; color: #FFF;}

